home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue72 / construc / SWebMod.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2001-07-03  |  477 b   |  25 lines

  1. unit SWebMod;
  2. interface
  3. uses
  4.   SysUtils, Classes, HTTPApp, WSDLPub, SOAPPasInv, SOAPHTTPPasInv,
  5.   SoapHTTPDisp, WebBrokerSOAP;
  6.  
  7. type
  8.   TWebModule1 = class(TWebModule)
  9.     HTTPSoapDispatcher1: THTTPSoapDispatcher;
  10.     HTTPSoapPascalInvoker1: THTTPSoapPascalInvoker;
  11.     WSDLHTMLPublish1: TWSDLHTMLPublish;
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17.  
  18. var
  19.   WebModule1: TWebModule1;
  20.  
  21. implementation
  22. {$R *.DFM}
  23.  
  24. end.
  25.